Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
know-your-http-well
Advanced tools
HTTP headers, media-types, methods, relations and status codes, all summarized and linking to their specification.
HTTP headers, media types, methods, relations and status codes, all summarized and linking to their specification.
This project is used by HyperREST bin at bin.hyperrest.com .
(require 'know-your-http-well)
;; M-x http-header ;; content-type
;; M-x http-method ;; post | POST
;; M-x http-relation ;; describedby
;; M-x http-status-code ;; 500
;; M-x http-status-code ;; not_found | NOT_FOUND
var httpWell = require('know-your-http-well'),
statusWell = httpWell.statusPhrasesToCodes,
phraseWell = httpWell.statusCodesToPhrases;
// on the server side
res.statusCode = statusWell.NOT_FOUND
// on the client side
if (res.statusCode !== statusWell.OK) {
// Log "Request returned 404 Not Found"
log('Request returned ' + res.statusCode + ' ' + phraseWell[res.statusCode]);
}
Just take a look at ./json/*.json.
If you want know-your-http-well to be included in the common list of docsets, just tweet to @kapeli for a +1.
Meanwhile, Preferences -> Docsets -> +
and using https://raw.github.com/for-GET/know-your-http-well/master/docset/know-your-http-well.xml should do it.
FAQs
HTTP headers, media-types, methods, relations and status codes, all summarized and linking to their specification.
The npm package know-your-http-well receives a total of 10,120 weekly downloads. As such, know-your-http-well popularity was classified as popular.
We found that know-your-http-well demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.